openssl: update download mirrors
authorChukun Pan <[email protected]>
Wed, 18 Sep 2024 15:10:16 +0000 (23:10 +0800)
committerMartin Schiller <[email protected]>
Thu, 4 Dec 2025 14:12:41 +0000 (15:12 +0100)
New releases of openssl are only published on GitHub, and official
downloads are also redirected to GitHub. So remove the old download
mirrors (file 404), and replace the current address with https.

Link: https://openssl-library.org/source/
Signed-off-by: Chukun Pan <[email protected]>
Link: https://github.com/openwrt/openwrt/pull/16470
Signed-off-by: Hauke Mehrtens <[email protected]>
(cherry picked from commit 38bb47c36c473a33b054a76dcd52827ae15fb610)

package/libs/openssl/Makefile

index a1da6f5d9ce8348bcf918cfb0ebf0662aaceeaed..4829670f86fe70fad5a039f179ef3b8626cd052f 100644 (file)
@@ -17,13 +17,9 @@ PKG_BUILD_PARALLEL:=1
 PKG_BASE:=$(subst $(space),.,$(wordlist 1,2,$(subst .,$(space),$(PKG_VERSION))))
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
 PKG_SOURCE_URL:= \
-       http://www.openssl.org/source/ \
-       http://www.openssl.org/source/old/$(PKG_BASE)/ \
-       https://github.com/openssl/openssl/releases/download/$(PKG_NAME)-$(PKG_VERSION)/ \
-       http://ftp.fi.muni.cz/pub/openssl/source/ \
-       http://ftp.fi.muni.cz/pub/openssl/source/old/$(PKG_BASE)/ \
-       ftp://ftp.pca.dfn.de/pub/tools/net/openssl/source/ \
-       ftp://ftp.pca.dfn.de/pub/tools/net/openssl/source/old/$(PKG_BASE)/
+       https://www.openssl.org/source/ \
+       https://www.openssl.org/source/old/$(PKG_BASE)/ \
+       https://github.com/openssl/openssl/releases/download/$(PKG_NAME)-$(PKG_VERSION)/
 
 PKG_HASH:=57e03c50feab5d31b152af2b764f10379aecd8ee92f16c985983ce4a99f7ef86
 
@@ -74,7 +70,7 @@ endif
 
 define Package/openssl/Default
   TITLE:=Open source SSL toolkit
-  URL:=http://www.openssl.org/
+  URL:=https://www.openssl.org/
   SECTION:=libs
   CATEGORY:=Libraries
 endef